home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / clx.lha / clx / tcpinit.l < prev    next >
Text File  |  1988-09-12  |  544b  |  17 lines

  1. ;; -*- Mode: LISP; Syntax: Common-lisp; Package: TCP; Base: 10; Lowercase: Yes -*-;;
  2. ;;
  3. ;; Interface to tcp for kcl
  4. ;;
  5. ;; Roman Budzianowski
  6. ;; Project Athena MIT
  7. ;;
  8. ;; First you have to compile the "c" files : kcltcp.c and socket.c
  9. ;; Then you have to compile the lisp file tcp.lisp 
  10. ;; Finally you load this file into kcl and you can call the
  11. ;; function (tcp:open-tcp-stream port)
  12. ;;
  13. (in-package "TCP" :use '("LISP"))
  14. ;; It is assumed that the files reside in the tcp subdirectory
  15. (si:faslink "tcp/tcp.o" "tcp/kcltcp.o tcp/socket.o -lc")
  16. ;;
  17.